home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1999 January / Designer's Club 1999 January.iso / pc / Idea Source / teaser.dir / 00152_rolleffect8.ls < prev    next >
Encoding:
Text File  |  1998-12-11  |  278 b   |  17 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   repeat while the rollOver = 25
  4.     if the mouseDown then
  5.       go("menu")
  6.     end if
  7.     set the visible of sprite 11 to 1
  8.     updateStage()
  9.   end repeat
  10. end
  11.  
  12. on mouseLeave me
  13.   cursor(-1)
  14.   set the visible of sprite 11 to 0
  15.   updateStage()
  16. end
  17.